Method: \saffire\io.println()

Signature void io.println(... args);

Prints text and automatically appends new lines.

Arguments

... args
A variable list of objects.

Notes:

Any non-string objects that are passed will be implicitly cast to string through the __string() method.

Examples:

io.println("hello", "world");
// hello world\n

io.println("hello", "world from saffire", 1234);
// hello world from saffire 1234\n